vcProductCreatorBatchMode
Configuration for batch feed mode in vcProductCreator. Creates batches of vcProductType instances in a sequence. Each batch defines the type of vcProduct to create, interval between instances and the maximum number of products to be created.
See in: Overview
Module: vcProcessModel
Parent: vcObject
Children -
Referenced by: -
Properties
Learn how to use properties here. The properties are also inherited from the parent class.
| Name | Type | Access | Description |
| BatchInterval | Real | RW | Gets or sets a delay between batches in seconds. Exceptions: ValueError: When the value is negative. |
| IsLooping | Boolean | RW | Gets or sets a value defining if the sequence is looping. |
| ProductBatches | vcObservableList[vcProductCreatorFeedBatch] | R | Gets a list of currently defined batches. |
| Properties | vcPropertyContainer | R | Gets the properties of this vcProductCreatorBatchMode. |
Methods
Learn how to use methods here. The methods are also inherited from the parent class.
| Name | Return Type | Parameters | Description |
| createBatch | vcProductCreatorFeedBatch | None | Creates a new batch with default values and adds it to the end of current batches. Returns: vcProductCreatorFeedBatch: The newly created batch. |
| moveBatch | None | vcProductCreatorFeedBatch batch, Integer index | Moves the given batch to the given index in the list of current batches.See moreParameters: batch (vcProductCreatorFeedBatch): The batch to move. index (Integer): The index to move the batch to. Must be greater than or equal to 0. |